bitkeeper revision 1.1483.1.1 (428dfcf4ShUaO_5EW8otOGE_3NKxvQ)
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Fri, 20 May 2005 15:06:28 +0000 (15:06 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Fri, 20 May 2005 15:06:28 +0000 (15:06 +0000)
Makefile:
  Move ioemu targets to the end of the Makefile so that the default target
  is all again.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
tools/Makefile

index 733f9dc1f51218a6cc9cef9e05ba687227a1eccc..52ddb9f24be3143f1b3a1a8afc97287ec7908868 100644 (file)
@@ -14,15 +14,6 @@ SUBDIRS += pygrub
 
 .PHONY: all install clean check check_clean ioemu eioemuinstall ioemuclean
 
-ifndef XEN_NO_IOEMU
-ioemu ioemuinstall ioemuclean:
-       [ -f ioemu/config-host.h ] || \
-       (cd ioemu; ./configure --prefix=$(DESTDIR)/usr)
-       $(MAKE) -C ioemu $(patsubst ioemu%,%,$@)
-else
-ioemu ioemuinstall ioemuclean:
-endif
-
 all: check
        @set -e; for subdir in $(SUBDIRS); do \
                $(MAKE) -C $$subdir $@; \
@@ -46,3 +37,13 @@ check:
 
 check_clean:
        $(MAKE) -C check clean
+
+ifndef XEN_NO_IOEMU
+ioemu ioemuinstall ioemuclean:
+       [ -f ioemu/config-host.h ] || \
+       (cd ioemu; ./configure --prefix=$(DESTDIR)/usr)
+       $(MAKE) -C ioemu $(patsubst ioemu%,%,$@)
+else
+ioemu ioemuinstall ioemuclean:
+endif
+